home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Magnum One
/
Magnum One (Mid-American Digital) (Disc Manufacturing).iso
/
d14
/
bibwin1.arc
/
GO.BAT
< prev
next >
Wrap
DOS Batch File
|
1991-07-29
|
743b
|
23 lines
@echo off
echo This batch file creates a directory named c:\bw and copies
echo files to it. To stop batch file, hold the control (Ctrl) key
echo and press the Break key.
pause Press a key to continue.
md c:\bw >nul
copy bw.exe c:\bw > nul
copy list.com c:\bw > nul
copy qlist c:\bw > nul
copy readme c:\bw > nul
copy readme.bat c:\bw > nul
copy register.frm c:\bw > nul
copy twb c:\bw > nul
copy verses.niv c:\bw > nul
rem if not exist c:\windows\win.ini goto nowin
rem copy vbrun100.dll c:\windows > nul
echo For information on running the program, see the readme file.
pause
goto done
:nowin
echo I can't find your windows subdirectory.
echo You will have to copy the file named vbrun100.dll to that directory.
:done